hello and welcome to the future of xodus os version 1.0

features include
-4 plot grapher
-3 plot grapher
-clear variable\clr ranges\clr graph\clr draw\
-games
-other apps
-math formulas eg.  y=mx+b form and stuff and finding diff variables


~~~~~~~~~~~~~KEY~~~~~~~~~~~~~~
symbol / WHat it is
=>     / Type it like it is shown (found under 2nd Test)
->     / The sto -> function (found above the On button)
ClrHome/ The Clear home screen function (found in the program edit menu -PRGM-I/O-down towards 		the bottom)
Disp   / THe display words funct "       "

***NOTE*** commands are not type in like C L R H O M E they are found in menus such as the PRGM 		edit menu


:ClrHome
:Disp "----------------"
:disp "XODUS PROGRAMING"
:disp "   SOLUTIONS    "
:disp "----------------"
:disp "                "
:disp "  PRESS ENTER   "
:Pause
:ClrHome
:Disp ""
:disp "----------------"
:disp "   Main Menu    "
:disp "----------------"
:disp "                "
:disp "   Press Enter  "
:Pause
:Lbl 1
:ClrHome
:disp "---Main Menu----"
:disp "1) apps         "
:disp "2) games        "
:disp "3) math         "
:disp "4) Quit         "
:0->A
:Input "=>",A
:If A=4
:Stop
:If A=1
:Goto 2
:If A=2
:Goto 3
:If A=3
:Goto 4
:Lbl 3
:ClrHome
:Disp "-----Games------"
:disp "1) Blak-jak     "
:disp "2 NONE          "
:disp "3 BACK          "
:disp "4 Quit          "
:0->B
:Input "=>",B
:If b=1
:goto 5
:If b=2
:goto 6
:if b=3
:goto 1
:if b=4
:stop
:lbl 2
:ClrHome
:Disp "------APPS------"
:disp "1) Quad plot    "
:disp "2) TRI PLOT     "
:disp "3) Variable clr "
:disp "4) back         "
:disp "5) quit         "
:0->C
:INput "=>",C
:if c=1
:goto 7
:if c=2
:goto 8
:if c=3
:goto 9
:if c=4
:goto 1
:if c=5
:stop
:lbl 9
:ClrHOme
:disp "----------------"
:disp " Variable clear "
:disp "----------------"
:Pause
:clrhome
:Disp "-variable-clear-"
:disp "                "
:disp"1) run           " 
:disp"2) back          "
:0->D
:input "=>",D
:If D/=/1
:goto 2
:0->A
:0->B
:0->C
:0->D
:0->E
:0->F
:0->G
:0->H
:0->I
:0->J
:0->K
:0->L
:0->M
:0->N
:0->O
:0->P
:0->Q
:0->R
:0->S
:0->T
:0->U
:0->V
:0->W
:0->X
:0->Y
:0->Z
:0->Xmin
:0->Ymin
:10->Xmax
:10->Ymax
:disp "----------------"
:disp "   finished     "
:disp "----------------"
:Pause
:goto 2
:Lbl 7
:ClrDraw
:ClrHome
:disp "----------------"
:disp "   Quad Plot    "
:disp "----------------"
:disp "1) run Prog     "
:disp "2) SEt coords   "
:disp "3) set param    "
:disp "4) back         "
:0->E
:input "=>",E
:if E=1
:goto A
:if E=2
:goto b
:if e=3
:goto c
:if E=4
:goto 2
:Lbl B
:clrhome
:disp "----------------"
:disp "Coordinate Seter"
:disp "----------------"
:Pause
:input "x1-",I
:input "y1-",J
:input "x2-",K
:input "y2-",L
:input "x3-",M
:input "y3-",N
:input "x4-",O
:input "y4-",P
:clrhome
:disp "----------------"
:disp "    finished    "
:disp "----------------"
:goto 7
:lbl A
:clrhome
:Disp "----------------"
:disp "    see graph   "
:disp "----------------"
:pause
:line(I,J,K,L)
:line(K,L,M,N)
:line(M,N,O,P)
:line(O,P,I,J)
:Pause
:goto 7
:lbl 8
:clrdraw
:clrhome
:disp "----------------"
:disp "    tri plot    "
:disp "----------------"
:pause
:disp "----TRI-plot----"
:disp "1) run prog     "
:disp "2) set coord    "
:disp "3) set param    "
:disp "4) back         "
:o->f
:input "=>",F
:if F=1
:goto d
:if F=2
:goto E
:if F=3
:goto F
:If F=4
:goto 2
:lbl d
:clrhome
:disp "----------------"
:disp "   See graph    "
:disp "----------------"
:pause
:line(I,J,K,L)
:line(K,L,M,N)
:line(M,N,I,J)
:pause
:goto 8
:lbl E
:clrhome
:disp "----------------"
:disp "  coord setter  "
:disp "----------------"
:pause
:Input "x1-",I
:input "y1-",J
:input "x2-",K
:input "y2-",L
:input "x3-",M
:input "y3-",N
:clrhome
:disp "----------------"
:disp "   finished     "
:disp "----------------"
:pause
:goto 8
:lbl v
:clrhome
:disp "----------------"
:disp "    dice roll   "
:disp "----------------"
:pause
:disp "how many dice"
:input "=>",Y
:disp "how many sides"
:input "=>",X
:o->W
:lbl G
:iPart randY+1->Z
:Disp Z
:Z+W->W
:DS<(x,1)
:goto W
:disp "                "
:disp G
:pause
:clrhome
:disp "----------------"
:disp "    Finished    "
:disp "----------------"
:goto 2
:lbl 5
:Lbl C
:Lbl 4
:Lbl 6
:lbl F
:
:
:
:disp "----------------"
:disp "Under  construct"